projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
158c9c7
)
cmd: blkcache: remove indentation from output of 'show'
author
Eric Nelson
<
[email protected]
>
Sat, 2 Apr 2016 14:37:12 +0000
(07:37 -0700)
committer
Tom Rini
<
[email protected]
>
Mon, 11 Apr 2016 16:44:38 +0000
(12:44 -0400)
Signed-off-by: Eric Nelson <
[email protected]
>
cmd/blkcache.c
patch
|
blob
|
history
diff --git
a/cmd/blkcache.c
b/cmd/blkcache.c
index 9a619e2199cec767aca7623e83c1727148db2965..a3dd549a9d282064085101b6fd25b20024655a2a 100644
(file)
--- a/
cmd/blkcache.c
+++ b/
cmd/blkcache.c
@@
-16,11
+16,11
@@
static int blkc_show(cmd_tbl_t *cmdtp, int flag,
struct block_cache_stats stats;
blkcache_stats(&stats);
- printf("
hits: %u\n"
- "
misses: %u\n"
- "
entries: %u\n"
- "
max blocks/entry: %u\n"
- "
max cache entries: %u\n",
+ printf("hits: %u\n"
+ "misses: %u\n"
+ "entries: %u\n"
+ "max blocks/entry: %u\n"
+ "max cache entries: %u\n",
stats.hits, stats.misses, stats.entries,
stats.max_blocks_per_entry, stats.max_entries);
return 0;